704dae40405fe4b0da62e34aea96a40b8927b0b7,src/main/java/meghanada/project/Project.java,Project,compileFile,#List#boolean#,281
Before Change
files,
this.getAllSources(),
new File(output));
return getJavaAnalyzer().analyzeAndCompile(filesList, this.allClasspath(), output);
}
public File getProjectRoot() {
After Change
files,
this.getAllSources(),
new File(output));
final CompileResult compileResult = getJavaAnalyzer().analyzeAndCompile(filesList, this.allClasspath(), output);
return this.updateSourceCache(compileResult);
}
public File getProjectRoot() {